home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-06-20 | 1.4 KB | 43 lines |
- # Makefile - This file contains the make rules for the vuser program.
- #
- # Copyright 1989 by Jeffrey F. Lawhorn (jeffl@berick.uucp)
- #
- # This file is part of vuser.
- #
- # vuser is free software; you can redistribute it and/or modify it
- # under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 1, or (at your
- # option) any later version.
- #
- # vuser is distributed in the hope that it will be useful, but
- # WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- # General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with GNU CC; see the file COPYING. If not, write to the
- # Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
-
- # $Id: Makefile,v 1.1 89/12/15 21:31:56 jeffl Exp $
-
- #
- # Define SYSV when compiling on System V.
- # Define TIMEOUT_IS_LONG if your timeout value in select is a long
- # rather than a struct timeval.
-
- # CFLAGS = -O -DSYSV -DTIMEOUT_IS_LONG
- CFLAGS = -g -DSYSV
-
- # some of us use smart C compilers.
- CC=cc
-
- # add any machine specific libraries you need to link to get select.
- # LIBS = -luipc
- LIBS =
-
- CFILES = main.c pty.c tty.c slave.c havefun.c
- OFILES = main.o pty.o tty.o slave.o havefun.o
-
- vuser: $(OFILES)
- $(CC) -o vuser $(OFILES) $(LIBS)
-